﻿@charset "utf-8";
/* CSS Document */

*{margin: 0;padding: 0}

.clear{clear:both}
.clearfix{zoom:1} .clearfix:after{content:".";display:block;visibility:hidden;height:0;clear:both;}

body{
	font-family: SimHei, Arial!important;
	overflow-x: hidden;
}

a{
	text-decoration: none;
}

ul li{
	list-style: none;
	/*float: left;*/
}
.no-padding {
	padding: 0;
}

.fenye{
	margin-top: 3%;
}

.fenye a{
	color: #333;
}

.fenye a:hover{
	color: #1c80d3;
}

.pro-fenye a{
	color: #333;
}













.fix{*zoom:1;}
.fix:after{display:table; content:''; clear:both;}


/* 头部 */
.header{
	width:100%;
	height:80px;
	position:fixed;
	top:0;
	left:0;
	z-index:9999;
	opacity: 0.8;
	background: #000;
}

.header > .logo{
	display:block;
	height:60px;
	max-width:27%;
	overflow:hidden;
	float:left;
	margin-top:10px;
	margin-left:20px;
}

.header .logo img{
	height:100%;
}

.header .nav{
	float:right;
	line-height:80px;
}

.header .nav > li{
	padding:0 30px;
	float:left;
	position:relative;
	font-size: 15px;
}

.header .nav > li > a{
	color:white;
	position:relative;
	z-index:1;
	
}

.header .nav > li > a.select{
	color:red;
}

.header .nav > li:hover > a{
	color:red;
}

.child-nav{
	padding:15px 0;
	border-left:1px solid red;
	border-right:1px solid red;
	position:relative;
	position:absolute;
	z-index:0;
	top:0;
	left:0;
	width:100%;
	display:none;
}

.child-nav dd:hover > a{
	color:red;
}

.bg-black{
	width:100%;
	height:calc(100% - 30px);
	-o-height:calc(100% - 30px);
	-ms-height:calc(100% - 30px);
	-moz-height:calc(100% - 30px);
	-webkit-height:calc(100% - 30px);
	background:rgba(0,0,0,1);
	position:absolute;
	top:15px;
	left:0;
}

.child-nav .red-box{
	width:calc(100% + 20px);
	-o-width:calc(100% + 20px);
	-ms-width:calc(100% + 20px);
	-moz-width:calc(100% + 20px);
	-webkit-width:calc(100% + 20px);
	padding:44px 10px 10px 10px;
	border-top:1px solid red;
	border-bottom:1px solid red;
	margin-left:-20px;
	position:relative;
}

.child-nav .red-box dl{
	line-height:50px;
	text-align:center;
	width:calc(100% - 20px);
	-o-width:calc(100% - 20px);
	-ms-width:calc(100% - 20px);
	-moz-width:calc(100% - 20px);
	-webkit-width:calc(100% - 20px);
	margin-left:10px;
}

.child-nav .red-box dl > dd{
	position:relative;
	padding:15px 15px;
	line-height:24px;
}

.child-nav .red-box dl dl{
	position:absolute;
	top:0;
	left:92.5%;
	width:100%;
	background:black;
	border:1px solid red;
	font-size:14px;
	display:none;
	text-align:left;
}

.child-nav .red-box dl > dd dd{
	padding:10px 15px;
	line-height:20px;
}

.child-nav .red-box dl > dd:hover dl{
	display:block;
}

.child-nav a{
	color:white;
}

.child-nav .red-box .spot i{
	width:6px;
	height:6px;
	border-radius:50%;
	background-color:red;
	position:absolute;
}

.child-nav .red-box .spot i:first-child{
	bottom:-4px;
	left:100%;
}

.child-nav .red-box .spot i:last-child{
	bottom:100%;
	left:16px;
}

.menu-box{
	float:right;
	margin-right:20px;
	height:30px;
	margin-top:25px;
	display:none;
}

.menu-box img{
	height:100%;
}

@media(max-width:1400px){
	.nav{
		display:none;
	}
	
	.menu-box{
		display:block;
	}
}
/*--end--*/


/* 侧边菜单 */
.black-box{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.2);
	z-index:999999;
	display:none;
}

/*一级导航*/
.nav-main{
	height: 100%;
	width: 100px;
	color: #fff;
	background: #333;
	font-size:16px;
	margin-left:-100px;
}

.nav-main a{
	color: #fff;
}

.nav-box{
	position: relative;
	perspective: 200px;
	-webkit-perspective: 200px;
	transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	height: 100%;
	z-index: 99;
}

.nav-ce,.nav-ul{
	height:100%;
}

.nav-ul li{
	height:10%;
}

.nav-ul li a{
	display: block;
	width: 100px;
	height: 100%;
	overflow: hidden;
	text-align: center;
	position: relative;
	transition: all .5s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
}

.nav-ul li a:before{
	content: '';
	position: absolute;
	left: -240px;
	top: 0px;
	width: 200px;
	height: 100%;
	background: #d21414;
	z-index: 1;
	transform: skew(30deg, 0);
	-webkit-transform: skew(30deg, 0);
	-ms-transform: skew(30deg, 0);
	-moz-transform: skew(30deg, 0);
	-o-transform: skew(30deg, 0);
	transition: all .5s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
}

.nav-ul li a:hover{
	background: red;
}

.nav-ul li a:hover:before{
	left: -30px;
}

.nav-ul li a:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 30px;
	left: 0;
	top: 20px;
	z-index: 1;
}

.nav-ul li a span{
	display: block;
	line-height:70px;
	perspective: ;
	position: relative;
	z-index: 1;
}

.nav-slide{
	position: fixed;
	left: 100px;
	top: 0;
	width: 200px;
	height: 100%;
	background: #252829;
	transform: rotateY(120deg);
	-webkit-transform: rotateY(120deg);
	-moz-transform: rotateY(120deg);
	-o-transform: rotateY(120deg);
	-ms-transform: rotateY(120deg);
	z-index: 99;
	visibility: hidden;
	transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-o-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transition: all .5s;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition-timing-function: cubic-bezier(.08, .72, .71, .96);
	-webkit-transition-timing-function: cubic-bezier(.08, .72, .71, .96);
}

.nav-slide.hover{
	transform: rotateY(0deg);
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	z-index: 15;
	visibility: visible;
}

/*二级菜单*/
.nav-slide-o li a{
	line-height: 50px;
	display: block;
	padding: 0 20px;
	font-size: 14px;
	overflow: hidden;
	text-align: left;
	position: relative;
	transition: all .5s;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
}

.nav-slide-o li a:before{
	content: '';
	position: absolute;
	left: -230%;
	top: 0px;
	width: 200%;
	height: 100%;
	background: #d21414;
	z-index: 1;
	transform: skew(30deg, 0);
	-webkit-transform: skew(30deg, 0);
	-moz-transform: skew(30deg, 0);
	-o-transform: skew(30deg, 0);
	-ms-transform: skew(30deg, 0);
	transition: all .5s;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
}

.nav-slide-o li a:hover{
	background: red;
}

.nav-slide-o li a:hover:before{
	left: -60px;
}

.nav-slide-o li a span{
	position: relative;
	z-index: 1;
}

.nav-slide-o {
	display: none;
}

.child-menu{
	background-color:#333;
	color:#ccc;
	display:none;
}

.child-menu span{
	padding-left:20px;
}

/*--end--*/


























.foot{
	padding: 3.5rem 0 2.5rem;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	width: 100%;
	float: left;
	background: rgba(204,204,204,0.2);
}

.foott{
	width: 1200px;
	margin: 0 auto;
}

.footer-nav {
  float: left; }
  .footer-nav .nav-item1 {
    position: relative;
    float: left;
    display: inline-block;
    width: 150px; }
    .footer-nav .nav-item1:nth-child(2) {
      width: 150px; }
  .footer-nav .nav-a {
    display: block;
    color: #333;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 20px; }
  .footer-nav .sub-hides {
    z-index: 2;
    width: 100%;
    left: 0;
    top: 100%; }
  .footer-nav .sub-a {
    display: block;
    color: #888;
    font-size: 14px;
    line-height: 30px;
    transition-duration: .3s;
    transition-timing-function: ease; }
    .footer-nav .sub-a:hover {
      color: #d70c19; }

.footer-top {
  padding:1.5rem 0 1.4rem;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;     width: 100%;
	float: left;background:rgba(204,204,204,0.2);}

.footer-ewm {
  float: left;
	width: 180px;
   }
  .footer-ewm .ewm-title {
    color: #333;
    font-size: 14px;
    line-height: 1;
    margin-bottom: .4rem;    text-align: left; }
  .footer-ewm .img-wrap {
    }

.footer-dr {
  color: #333;width: 240px;
  float: left; }
  .footer-dr .buy-title, .footer-dr .tele-title {
    font-size: 14px;
    line-height: 1; }
  .footer-dr .buy-title {
    margin-bottom: .9rem; }

  .footer-dr .tele-title {
    margin-bottom: 14px; }
  .footer-dr .tele-num {
    font-size: 20px;
    line-height: 1.8;
   
    font-weight: bold; }
  .footer-dr .buy-a {
    display: inline-block;
    width: 1.1rem;
    margin-right: 12px; }
.img100{
	width: 55%;
margin-top: 20px;
}





.footer{
	padding: .5% 0;
	background: rgba(204,204,204,0.3)
}

.footer span{
	float: right;
}

.footer p{
	color: #333;
	font-size: 14px;
	margin-bottom: 0;
}

.footer a{
	color: #333;
}


